/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Gradient overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
}

/* Dropdown styles */
.menu .dropdown {
    position: relative;
}

.menu .dropdown .arrow-down {
    font-size: 0.8rem;
    margin-left: 5px;
}

.menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none; /* Initially hidden */
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    border-radius: 5px;
    min-width: 200px;
}

.menu .dropdown-menu li {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

.menu .dropdown-menu li:last-child {
    border-bottom: none;
}

.menu .dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.menu .dropdown-menu li a:hover {
    background-color: #f4f4f4;
}

/* Show dropdown on hover */
.menu .dropdown:hover .dropdown-menu {
    display: block;
}

/* About System Integration */
.about-system-integration {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.about-system-integration h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.about-system-integration p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Integration Capabilities */
.integration-capabilities {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff;
}

.integration-capabilities h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.capabilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.capability-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex: 1 1 calc(33% - 2rem);
    max-width: 300px;
}

.capability-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.capability-item h3 {
    font-size: 1.25rem;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.capability-item p {
    font-size: 0.9rem;
    color: #555;
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.why-choose-us .reasons {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.why-choose-us .reasons li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.why-choose-us .reasons li::before {
    content: '\2713';
    color: #007BFF;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .capabilities-list, .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .capability-item, .card {
        flex: 1 1 100%;
        max-width: none;
    }

    .why-choose-us .reasons {
        text-align: center;
    }
}

/* Technologies We Use Section */
.technologies {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.technologies h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1.5rem;
}

.technologies p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.tech-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 200px; /* Adjust width to maintain consistency */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tech-item img {
    width: 100px;
    height: 80px;
    margin-bottom: 1rem;
}

.tech-item h3 {
    font-size: 1.2rem;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tech-item {
        width: 100%; /* Full width on smaller screens */
    }
}


